/*!
 * app.css for lenri.cn
 * Author wzcoder.com
 * @Copyright 2005-2021 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2021-05-19 1:59 PM
 */


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 70px;
    box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5);
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo a {
    color: var(--primary-color);
}

#header .logo img {
    max-height: 40px;
}

.scrolled-offset {
    margin-top: 70px;
}

@media (max-width: 768px) {
    #header .logo {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 1.2rem;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
    color: var(--primary-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 5px 10px;
    font-size: 1rem;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    justify-content: center;
    padding: 10px 20px;
    color: #222222;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
#slider {
    width: 100%;
    height: 60vh;
    background-color: rgba(63, 73, 83, 0.8);
    overflow: hidden;
    position: relative;
}


#slider .carousel, #slider .carousel-inner, #slider .carousel-item, #slider .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}


#slider .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

#slider .carousel-item:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    /*background-image: url("../img/mask.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

#slider .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
    z-index: 20;
}

#slider .container {
    text-align: center;
}

#slider h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 700;
}

#slider p {
    font-size: 22px;
    margin: 0 auto 30px auto;
    color: #fff;
}

#slider .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center bottom;
}

#slider .carousel-inner .carousel-item,
#slider .carousel-inner .active.carousel-item-start,
#slider .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#slider .carousel-inner .active,
#slider .carousel-inner .carousel-item-next.carousel-item-start,
#slider .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#slider .carousel-inner .carousel-item-next,
#slider .carousel-inner .carousel-item-prev,
#slider .carousel-inner .active.carousel-item-start,
#slider .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#slider .carousel-control-next, #slider .carousel-control-prev {
    opacity: .2;
}

#slider:hover .carousel-control-next, #slider:hover .carousel-control-prev {
    opacity: 1;
}

#slider .carousel-control-next-icon, #slider .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#slider .carousel-control-next-icon:hover, #slider .carousel-control-prev-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

#slider .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 30px;
    height: 4px;
    opacity: .6;
    transition: 0.3s;
}

#slider .carousel-indicators li.active {
    opacity: 1;
    background: var(--primary-color);
}


@media (max-width: 992px) {
    #slider {
        height: 40vh;
    }

    #slider .carousel-container {
        top: 8px;
    }
}

@media (max-width: 768px) {
    #slider h2 {
        font-size: 24px;
    }

    #slider p {
        font-size: 16px;
    }

    #slider .carousel-control-next-icon, #slider .carousel-control-prev-icon {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    #slider .carousel-control-prev, #slider .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #slider {
        height: 120vh;
    }
}

.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1);
    animation-delay: calc(var(--animate-delay) * 1);
}

.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}

.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f8fcf9;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #5cb874;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.btn-more {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    margin-top: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    color: #ffffff;
}

.btn-more:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta .cta-btn {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 3px;
}

.cta .cta-btn:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product .product-item {
    margin-bottom: 30px;
}

.product #product-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.product #product-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.product #product-flters li:hover, .product #product-flters li.filter-active {
    color: #fff;
    background: #5cb874;
}

.product #product-flters li:last-child {
    margin-right: 0;
}

.product .product-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(34, 34, 34, 0.6);
}

.product .product-wrap::before {
    content: "";
    background: rgba(34, 34, 34, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.product .product-wrap img {
    transition: all ease-in-out 0.3s;
}

.product .product-wrap .product-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.product .product-wrap .product-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.product .product-wrap .product-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.product .product-wrap .product-links {
    text-align: center;
    z-index: 4;
}

.product .product-wrap .product-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.product .product-wrap .product-links a:hover {
    color: var(--primary-color);
}

.product .product-wrap:hover::before {
    opacity: 1;
}

.product .product-wrap:hover img {
    transform: scale(1.2);
}

.product .product-wrap:hover .product-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(92, 184, 116, 0.7), rgba(92, 184, 116, 0.9)), url("../img/cta-bg.jpeg") fixed center center;
    background-size: cover;
    padding: 60px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 3px;
}

.cta .cta-btn:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news .news-item h4 {
    font-size: 20px;
}

.news .news-item .caption:after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0.5rem 0;
    transition: all 0.3s ease-in-out;
}

.news-item:hover .caption:after {
    width: 120px;
}

.news .news-item p {
    color: var(--text-color-secondary);
}

.news .news-item a.read-more {
    color: var(--primary-color);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: var(--light-bg-color);
    font-size: 14px;
}


.footer .footer-top {
    padding: 30px 0;
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo-footer {
    font-size: 2rem;
    color: var(--primary-color);
}


.footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    color: var(--primary-color);
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--primary-color);
    font-size: 12px;
    line-height: 0;
}

.footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}


.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
}

.footer .author {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
}

@media all and (max-width: 415px) {
    .footer .footer-top .footer-info .logo-footer {
        font-size: 1.2rem;
    }
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb-bg {
    background: url("../img/breadcrumb-bg.jpg") center center no-repeat;
    background-size: cover;
}

.wz-breadcrumb {
    position: relative;
    z-index: 0;
    display: grid;
    align-items: center;
}

.wz-breadcrumb h2.title {
    font-size: 34px;
    font-weight: 400;
    padding-top: 60px;
}

.wz-breadcrumb .breadcrumbs-custom-path li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 1em;
    line-height: 1.5;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--text-color-primary);
}

.wz-breadcrumb .breadcrumbs-custom-path li span.bi {
    font-size: 12px;
    vertical-align: 2px;
}


@media (max-width: 640px) {
    .wz-breadcrumb h2.title {
        font-size: 34px;
    }

}

@media (max-width: 600px) {
    .wz-breadcrumb h2.title {
        font-size: 30px;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-area {
    height: auto;
    width: 100%;
}

.contact-content {
    padding: 100px;
    background: #000 none repeat scroll 0 0;
}

.contact-content-right {
    padding: 100px;
}

.single-icon i {
    font-size: 48px;
    border-radius: 50%;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.single-icon p {
    font-size: 16px;
    line-height: 30px;
}

.contact-icon {
    margin-bottom: 40px;
}

#google-map {
    height: 370px;
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.list-products .product-wrapper {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.list-products .product-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.list-products .product-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;

    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAABQCAYAAAAZQFV3AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMDQ2MEU5NzMyNjMxMUU4ODhDQkZFMENGRDFGM0IwRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowMDQ2MEU5ODMyNjMxMUU4ODhDQkZFMENGRDFGM0IwRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAwNDYwRTk1MzI2MzExRTg4OENCRkUwQ0ZEMUYzQjBGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAwNDYwRTk2MzI2MzExRTg4OENCRkUwQ0ZEMUYzQjBGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+KADbvQAAAUtJREFUeNrkWNEOwyAIFNr//2WWLO2iDuG02urWpA9VY+EODjSEzg8db7dnH7EhR99i/OCcs9YkmwXHWgLWfFk4N4YeRtr419iuYEMOhuZYDctNGFLvOJyT5e3AzgpoQed2UCAInRuCIbKhF06feZQUGJKTlCvWwWFD2aYhy3W5giGhuoi43JQp1EMYYpcpw8nTwOK6IS5zYx43Zwr1VpvnBZYjt6SQIWiflLAsirWiEESFVHyv91xGZIuHY3hrYNcQIhopZPSEIYsGVTMfK1LPkrIZcadhZ/bgQzEkg1mr0iXj0wb2fSyv6zLcBAy1UC7IFlwC5gqb2u5LNPfXF1ipbZjWqctkMKf1OMWxNdRmjdSD7mSQVFwDw//oYH8Qw6a6XDodIZsnB3BWFqGXu7ERCxUpdk6eJfzktlaEG+WqeKyAruTRE/1LgAEA0cdR9CWc6uwAAAAASUVORK5CYII=) repeat-x bottom;
    width: 100%;
    z-index: 10;
    display: block;
    padding: 45px 10px 10px 10px;
    overflow: hidden;
    margin: 0;
}

.list-products .product-caption a {
    font-size: 20px;
    color: #ffffff;
}


@media (max-width: 991px) {
    .list-products .product-caption a {
        font-size: 1.4rem;
    }

}

@media (max-width: 768px) {
    .list-products .product-caption a {
        font-size: 1.1rem;
    }
}

/*--------------------------------------------------------------
# Product Category
--------------------------------------------------------------*/
.product-category {
    text-align: center;
}

.product-category li a {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.product-category li a:hover, .product-category li.filter-active a {
    color: #fff;
    background: #5cb874;
}

.product-category li:last-child a {
    margin-right: 0;
}

/*--------------------------------------------------------------
# Product Detail
--------------------------------------------------------------*/
.wzc-article .admin-post {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.wzc-article .admin-post li {
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
}

.wzc-article .admin-post li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.wzc-article ul.admin-post li a {
    font-size: 14px;
    color: var(--text-color-secondary);
}

.wzc-article .admin-post a span {
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 5px;
}


@media all and (max-width: 640px) {

    .wzc-article .admin-post li {
        display: inline-block;
        margin-right: 6px;
        padding-right: 6px;
        font-size: 15px;
    }

}

@media all and (max-width: 415px) {
    .wzc-article .admin-post li {
        margin-right: 10px;
    }
}

.wzc-article .prev-next-wrapper {
    border-top: 1px solid var(--light-bg-color);
    padding: 20px 0;
    margin-top: 30px;
}

.wzc-article .prev-next-wrapper p {
    margin: 10px 0;
}

/*--------------------------------------------------------------
# List Article
--------------------------------------------------------------*/
.list-article-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--light-bg-color);
}

.list-article-item .w-co {
    font-size: 14px;
    color: var(--text-color-secondary);
}

/*--------------------------------------------------------------
# Glightbox
--------------------------------------------------------------*/
.glightbox-clean .gslide-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    line-height: 1.5;
}

.list-products .video-wrapper {
    padding-bottom: 56.25% !important;
}

.wzc-article .article-body img {
    max-width: 100%;
    height: auto;
}
